一、使用的函式庫:
二、步驟介紹
跟著圖片一個一個點選
更正:第二步驟原本是"try it out"
2~3步驟:
import requests
import json
url = 'https://openapi.twse.com.tw/v1/exchangeReport/BWIBBU_ALL' # 複製Request URL
data = requests.get(url) # 抓資料
data_json = data.json() # 轉換成JSON,此資料型式是list,每個元素是dic
#這個函式可以叫出股票資料
def find_stock(code):
for stock in data_json: # 遍歷剛剛json全部的dic
if stock['Code'] ==code: # stock['Code']是字典呼叫value的格式
return stock
code = input('請輸入股票代碼') #使用者輸入的code會存入code變數
print(find_stock(code))
資料來源:
https://developer.mozilla.org/zh-TW/docs/Learn/JavaScript/Objects/JSON